home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / lib / partman / free_space / 50new / choices next >
Encoding:
Text File  |  2009-04-19  |  293 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. . /lib/partman/lib/base.sh
  4.  
  5. dev=$1
  6. id=$2
  7.  
  8. cd $dev
  9.  
  10. open_dialog PARTITION_INFO $id
  11. read_line x1 id x2 type x3 x4 x5
  12. close_dialog
  13.  
  14. [ "$id" ] || exit 0
  15.  
  16. case "$type" in
  17.     primary|logical|pri/log)
  18.     db_metaget partman-partitioning/text/new description
  19.     printf "new\t${RET}\n"
  20.     ;;
  21. esac
  22.